/* Very Light Shoptets Header Styling - Orange Line + Enhanced Text */

/* Import modern font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* Add orange accent line at top of header */
#header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ff8533, #ff6600);
    z-index: 9999;
}

/* Enhanced text styling for navigation */
#header {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Main navigation menu text */
.menu-level-1 > li > a {
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.menu-level-1 > li > a:hover {
    color: #ff6600;
    transform: translateY(-1px);
}

/* Submenu text */
.menu-level-2 li a {
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.menu-level-2 li a:hover {
    color: #ff6600;
    transform: translateX(3px);
}

/* Desktop submenu styling with glass effect and orange accents */
@media (min-width: 769px) {
    .menu-level-2 {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 102, 0, 0.2);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(255, 102, 0, 0.15);
        padding: 0.75rem 0;
        overflow: hidden;
        position: relative;
    }
    
    /* Orange accent gradient border */
    .menu-level-2::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #ff6600, #ff8533, #ff6600);
        border-radius: 16px 16px 0 0;
    }
    
    .menu-level-2 li a {
        margin: 0 0.75rem;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .menu-level-2 li a:hover {
        color: #ff6600;
        transform: translateX(4px);
        text-shadow: 0 0 10px rgba(255, 102, 0, 0.6);
        filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.4));
    }
}

/* Navigation action buttons text */
.navigationActions a {
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navigationActions a:hover {
    color: #ff6600;
    transform: translateY(-1px);
}

/* Make it thinner on mobile */
@media (max-width: 768px) {
    #header::before {
        height: 2px;
    }
    
    /* Make logo larger on mobile */
    .site-name img {
        transform: scale(1.6);
        transform-origin: left center;
    }
    
    /* Add some extra margin to prevent logo from overlapping other elements */
    .site-name {
        margin-right: 1rem;
    }
}